home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / dspkgctr.z / dspkgctr / gcc / final.c < prev    next >
C/C++ Source or Header  |  1992-06-08  |  44KB  |  1,660 lines

  1. /* Convert RTL to assembler code and output it, for GNU compiler.
  2.    Copyright (C) 1987, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4.     $Id: final.c,v 1.20 91/10/23 16:39:59 pete Exp $
  5.  
  6. This file is part of GNU CC.
  7.  
  8. GNU CC is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 1, or (at your option)
  11. any later version.
  12.  
  13. GNU CC is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with GNU CC; see the file COPYING.  If not, write to
  20. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22.  
  23. /* This is the final pass of the compiler.
  24.    It looks at the rtl code for a function and outputs assembler code.
  25.  
  26.    Call `final_start_function' to output the assembler code for function entry,
  27.    `final' to output assembler code for some RTL code,
  28.    `final_end_function' to output assembler code for function exit.
  29.    If a function is compiled in several pieces, each piece is
  30.    output separately with `final'.
  31.  
  32.    Some optimizations are also done at this level.
  33.    Move instructions that were made unnecessary by good register allocation
  34.    are detected and omitted from the output.  (Though most of these
  35.    are removed by the last jump pass.)
  36.  
  37.    Instructions to set the condition codes are omitted when it can be
  38.    seen that the condition codes already had the desired values.
  39.  
  40.    In some cases it is sufficient if the inherited condition codes
  41.    have related values, but this may require the following insn
  42.    (the one that tests the condition codes) to be modified.
  43.  
  44.    The code for the function prologue and epilogue are generated
  45.    directly as assembler code by the macros FUNCTION_PROLOGUE and
  46.    FUNCTION_EPILOGUE.  Those instructions never exist as rtl.  */
  47.  
  48. #include <stdio.h>
  49. #include "config.h"
  50. #include "rtl.h"
  51. #include "regs.h"
  52. #if ! defined( _INTELC32_ )
  53. #include "insn-config.h"
  54. #include "recog.h"
  55. #include "conditions.h"
  56. #else
  57. #include "iconfig.h"
  58. #include "recog.h"
  59. #include "conds.h"
  60. #endif
  61. #include "gdbfiles.h"
  62. #include "flags.h"
  63. #include "real.h"
  64. #include "output.h"
  65.  
  66. /* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist.  */
  67. #ifdef DBX_DEBUGGING_INFO
  68. #ifdef USG
  69. #include "stab.h"  /* If doing DBX on sysV, use our own stab.h.  */
  70. #else
  71. #include <stab.h>  /* On BSD, use the system's stab.h.  */
  72. #endif /* not USG */
  73. #endif /* DBX_DEBUGGING_INFO */
  74.  
  75. /* .stabd code for line number.  */
  76. #ifndef N_SLINE
  77. #define    N_SLINE    0x44
  78. #endif
  79.  
  80. /* .stabs code for included file name.  */
  81. #ifndef N_SOL
  82. #define    N_SOL 0x84
  83. #endif
  84.  
  85. #if ! defined( _MSDOS )
  86. #define min(A,B) ((A) < (B) ? (A) : (B))
  87. #endif
  88.  
  89. rtx peephole ();
  90. void output_asm_insn ();
  91. rtx alter_subreg ();
  92. static int alter_cond ();
  93. void output_asm_label ();
  94. static void output_operand ();
  95. void output_address ();
  96. void output_addr_const ();
  97. static void output_source_line ();
  98. rtx final_scan_insn ();
  99.  
  100. /* the sdb debugger needs the line given as an offset from the beginning
  101.    of the current function -wfs*/
  102.  
  103. extern int sdb_begin_function_line;
  104.  
  105. /* Line number of last NOTE.  */
  106. static int last_linenum;
  107.  
  108. /* Number of basic blocks seen so far;
  109.    used if profile_block_flag is set.  */
  110. static int count_basic_blocks;
  111.  
  112. /* Nonzero while outputting an `asm' with operands.
  113.    This means that inconsistencies are the user's fault, so don't abort.
  114.    The precise value is the insn being output, to pass to error_for_asm.  */
  115. static rtx this_is_asm_operands;
  116.  
  117. /* Number of operands of this insn, for an `asm' with operands.  */
  118. static int insn_noperands;
  119.  
  120. /* File in which assembler code is being written.  */
  121.  
  122. extern FILE *asm_out_file;
  123.  
  124. /* Compare optimization flag. */
  125.  
  126. static rtx last_ignored_compare = 0;
  127.  
  128. /* Flag indicating this insn is the start of a new basic block. */
  129.  
  130. static int new_block = 1;
  131.  
  132. /* All the symbol-blocks (levels of scoping) in the compilation
  133.    are assigned sequence numbers in order of appearance of the
  134.    beginnings of the symbol-blocks.  Both final and dbxout do this,
  135.    and assume that they will both give the same number to each block.
  136.    Final uses these sequence numbers to generate assembler label names
  137.    LBBnnn and LBEnnn for the beginning and end of the symbol-block.
  138.    Dbxout uses the sequence nunbers to generate references to the same labels
  139.    from the dbx debugging information.
  140.  
  141.    Sdb records this level at the beginning
  142.    of each function, so that when it recurses down the declarations, it may
  143.    find the current level, since it outputs the block beginning and endings
  144.    at the point in the asm file, where the blocks would begin and end.  */
  145.  
  146. int next_block_index;
  147.  
  148. /* Chain of all `struct gdbfile's.  */
  149.  
  150. struct gdbfile *gdbfiles;
  151.  
  152. /* `struct gdbfile' for the last file we wrote a line number for.  */
  153.  
  154. static struct gdbfile *current_gdbfile;
  155.  
  156. /* Filenum to assign to the next distinct source file encountered.  */
  157.  
  158. static int next_gdb_filenum;
  159.  
  160. /* This variable contains machine-dependent flags (defined in tm-...h)
  161.    set and examined by output routines
  162.    that describe how to interpret the condition codes properly.  */
  163.  
  164. CC_STATUS cc_status;
  165.  
  166. /* During output of an insn, this contains a copy of cc_status
  167.    from before the insn.  */
  168.  
  169. CC_STATUS cc_prev_status;
  170.  
  171. /* Last source file name mentioned in a NOTE insn.  */
  172.  
  173. static char *lastfile;
  174.  
  175. /* Indexed by hardware reg number, is 1 if that register is ever
  176.    used in the current function.
  177.  
  178.    In life_analysis, or in stupid_life_analysis, this is set
  179.    up to record the hard regs used explicitly.  Reload adds
  180.    in the hard regs used for holding pseudo regs.  Final uses
  181.    it to generate the code in the function prologue and epilogue
  182.    to save and restore registers as needed.  */
  183.  
  184. char regs_ever_live[FIRST_PSEUDO_REGISTER];
  185.  
  186. /* Nonzero means current function must be given a frame pointer.
  187.    Set in stmt.c if anything is allocated on the stack there.
  188.    Set in reload1.c if anything is allocated on the stack there.  */
  189.  
  190. int frame_pointer_needed;
  191.  
  192. /* Assign unique numbers to labels generated for profiling.  */
  193.  
  194. int profile_label_no;
  195.  
  196. /* Length so far allocated in PENDING_BLOCKS.  */
  197.  
  198. static int max_block_depth;
  199.  
  200. /* Stack of sequence numbers of symbol-blocks of which we have seen the
  201.    beginning but not yet the end.  Sequence numbers are assigned at
  202.    the beginning; this stack allows us to find the sequence number
  203.    of a block that is ending.  */
  204.  
  205. static int *pending_blocks;
  206.  
  207. /* Number of elements currently in use in PENDING_BLOCKS.  */
  208.  
  209. static int block_depth;
  210.  
  211. /* Nonzero if have enabled APP processing of our assembler output.  */
  212.  
  213. static int app_on;
  214.  
  215. /* If we are outputting an insn sequence, this contains the sequence rtx.
  216.    Zero otherwise.  */
  217.  
  218. rtx final_sequence;
  219.  
  220. #if defined( _MSDOS )
  221. void error_for_asm ( rtx insn, ... );
  222. #endif
  223.  
  224. /* Initialize data in final at the beginning of a compilation.  */
  225.  
  226. void
  227. init_final (filename)
  228.      char *filename;
  229. {
  230.   next_block_index = 2;
  231.   lastfile = filename;
  232.   app_on = 0;
  233.   max_block_depth = 20;
  234.   pending_blocks = (int *) xmalloc (20 * sizeof *pending_blocks);
  235.   gdbfiles = 0;
  236.   next_gdb_filenum = 0;
  237.   final_sequence = 0;
  238. }
  239.  
  240. /* Called at end of source file,
  241.    to output the block-profiling table for this entire compilation.  */
  242.  
  243. void
  244. end_final (filename)
  245.      char *filename;
  246. {
  247.   int i;
  248.  
  249.   if (profile_block_flag)
  250.     {
  251.       char name[12];
  252.  
  253.       data_section ();
  254.  
  255.       /* Output the main header, of 6 words:
  256.      0:  1 if this file's initialized, else 0.
  257.      1:  address of file name.
  258.      2:  address of table of counts.
  259.      4:  number of counts in the table.
  260.      5:  always 0, for compatibility with Sun.
  261.      6:  extra word added by GNU: address of address table
  262.           which contains addresses of basic blocks,
  263.           in parallel with the table of counts.  */
  264.       ASM_OUTPUT_ALIGN (asm_out_file,
  265.             exact_log2 (min (UNITS_PER_WORD,
  266.                      BIGGEST_ALIGNMENT / BITS_PER_UNIT)));
  267.  
  268.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 0);
  269.       assemble_integer_zero ();
  270.  
  271.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 1);
  272.       ASM_OUTPUT_INT (asm_out_file, gen_rtx (SYMBOL_REF, Pmode, name));
  273.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 2);
  274.       ASM_OUTPUT_INT (asm_out_file, gen_rtx (SYMBOL_REF, Pmode, name));
  275.       ASM_OUTPUT_INT (asm_out_file, gen_rtx (CONST_INT, VOIDmode,
  276.                          count_basic_blocks));
  277.       assemble_integer_zero ();
  278.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
  279.       ASM_OUTPUT_INT (asm_out_file, gen_rtx (SYMBOL_REF, Pmode, name));
  280.  
  281.       /* Output the file name.  */
  282.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 1);
  283.       assemble_string (filename, strlen (filename) + 1);
  284.  
  285.       /* Realign data section.  */
  286.       ASM_OUTPUT_ALIGN (asm_out_file,
  287.             exact_log2 (min (UNITS_PER_WORD,
  288.                      BIGGEST_ALIGNMENT / BITS_PER_UNIT)));
  289.  
  290.       /* Make space for the table of counts.  */
  291.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 2);
  292.       ASM_OUTPUT_SKIP (asm_out_file, UNITS_PER_WORD * count_basic_blocks);
  293.  
  294.       /* Output the table of addresses.  */
  295.       text_section ();
  296.       ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LPBX", 3);
  297.       for (i = 0; i < count_basic_blocks; i++)
  298.     {
  299.       char name[12];
  300.       ASM_GENERATE_INTERNAL_LABEL (name, "LPB", i);
  301.       ASM_OUTPUT_INT (asm_out_file, gen_rtx (SYMBOL_REF, Pmode, name));
  302.     }
  303.  
  304.       /* End with the address of the table of addresses,
  305.      so we can find it easily, as the last word in the file's text.  */
  306.       ASM_GENERATE_INTERNAL_LABEL (name, "LPBX", 3);
  307.       ASM_OUTPUT_INT (asm_out_file, gen_rtx (SYMBOL_REF, Pmode, name));
  308.     }
  309. }
  310.  
  311. /* Enable APP processing of subsequent output.
  312.    Used before the output from an `asm' statement.  */
  313.  
  314. void
  315. app_enable ()
  316. {
  317.   if (! app_on)
  318.     {
  319.       fprintf (asm_out_file, ASM_APP_ON);
  320.       app_on = 1;
  321.     }
  322. }
  323.  
  324. /* Enable APP processing of subsequent output.
  325.    Called from varasm.c before most kinds of output.  */
  326.  
  327. void
  328. app_disable ()
  329. {
  330.   if (app_on)
  331.     {
  332.       fprintf (asm_out_file, ASM_APP_OFF);
  333.       app_on = 0;
  334.     }
  335. }
  336.  
  337. /* Return the number of slots filled in the current 
  338.    delayed branch sequence. */
  339.  
  340. #ifdef HAVE_DELAYED_BRANCH
  341. int
  342. dbr_sequence_length ()
  343. {
  344.   int i;
  345.   int slots = 0;
  346.   /* It's zero if we are not scheduling or not in a sequence. 
  347.      (We never count the first insn.)                  */
  348.   if (flag_delayed_branch && final_sequence != 0)
  349.     {
  350.       for (i = 1; i < XVECLEN (final_sequence, 0); i++)
  351.     slots += DBR_INSN_SLOTS (XVECEXP (final_sequence, 0, i));
  352.     }
  353.   return slots;
  354. }
  355. #endif
  356.  
  357. /* Output assembler code for the start of a function,
  358.    and initialize some of the variables in this file
  359.    for the new function.  The label for the function and associated
  360.    assembler pseudo-ops have already been output in `assemble_function'.
  361.  
  362.    FIRST is the first insn of the rtl for the function being compiled.
  363.    FILE is the file to write assembler code to.
  364.    WRITE_SYMBOLS says which kind of debugging info to write (or none).
  365.    OPTIMIZE is nonzero if we should eliminate redundant
  366.      test and compare insns.  */
  367.  
  368. void
  369. final_start_function (first, file, write_symbols, optimize)
  370.      rtx first;
  371.      FILE *file;
  372.      enum debugger write_symbols;
  373.      int optimize;
  374. {
  375.   block_depth = 0;
  376.  
  377.   this_is_asm_operands = 0;
  378.  
  379.   /* Record beginning of the symbol-block that's the entire function.  */
  380.  
  381.   if (write_symbols == GDB_DEBUG)
  382.     {
  383.       pending_blocks[block_depth++] = next_block_index;
  384.       fprintf (file, "\t.gdbbeg %d\n", next_block_index++);
  385.     }
  386.  
  387. #if ! defined( DSP56000 ) && ! defined( DSP96000 )
  388.   /* Initial line number is supposed to be output
  389.      before the function's prologue and label
  390.      so that the function's address will not appear to be
  391.      in the last statement of the preceding function.  */
  392.   if (NOTE_LINE_NUMBER (first) != NOTE_INSN_DELETED)
  393.     output_source_line (file, first, write_symbols);
  394. #endif
  395.  
  396. #ifdef FUNCTION_PROLOGUE
  397.   /* First output the function prologue: code to set up the stack frame.  */
  398.   FUNCTION_PROLOGUE (file, get_frame_size ());
  399. #endif
  400.  
  401. #ifdef SDB_DEBUGGING_INFO
  402.   next_block_index = 1;
  403. #endif
  404.  
  405. #ifdef FUNCTION_BLOCK_PROFILER
  406.   if (profile_block_flag)
  407.     {
  408.       FUNCTION_BLOCK_PROFILER (file, profile_label_no);
  409.     }
  410. #endif /* FUNCTION_BLOCK_PROFILER */
  411.  
  412.   if (profile_flag)
  413.     {
  414.       int align = min (BIGGEST_ALIGNMENT, BITS_PER_WORD);
  415.       extern int current_function_returns_struct;
  416.       extern int current_function_needs_context;
  417.       int sval = current_function_returns_struct;
  418.       int cxt = current_function_needs_context;
  419.  
  420.       data_section ();
  421.       ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
  422.       ASM_OUTPUT_INTERNAL_LABEL (file, "LP", profile_label_no);
  423.       assemble_integer_zero ();
  424.  
  425.       text_section ();
  426.  
  427. #ifdef STRUCT_VALUE_INCOMING_REGNUM
  428.       if (sval)
  429.     ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_INCOMING_REGNUM);
  430. #else
  431. #ifdef STRUCT_VALUE_REGNUM
  432.       if (sval)
  433.     ASM_OUTPUT_REG_PUSH (file, STRUCT_VALUE_REGNUM);
  434. #endif
  435. #endif
  436.  
  437. #if 0
  438. #ifdef STATIC_CHAIN_INCOMING_REGNUM
  439.       if (cxt)
  440.     ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_INCOMING_REGNUM);
  441. #else
  442. #ifdef STATIC_CHAIN_REGNUM
  443.       if (cxt)
  444.     ASM_OUTPUT_REG_PUSH (file, STATIC_CHAIN_REGNUM);
  445. #endif
  446. #endif
  447. #endif /* 0 */
  448.  
  449.       FUNCTION_PROFILER (file, profile_label_no);
  450.  
  451. #if 0
  452. #ifdef STATIC_CHAIN_INCOMING_REGNUM
  453.       if (cxt)
  454.     ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_INCOMING_REGNUM);
  455. #else
  456. #ifdef STATIC_CHAIN_REGNUM
  457.       if (cxt)
  458.     ASM_OUTPUT_REG_POP (file, STATIC_CHAIN_REGNUM);
  459. #endif
  460. #endif
  461. #endif /* 0 */
  462.  
  463. #ifdef STRUCT_VALUE_INCOMING_REGNUM
  464.       if (sval)
  465.     ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_INCOMING_REGNUM);
  466. #else
  467. #ifdef STRUCT_VALUE_REGNUM
  468.       if (sval)
  469.     ASM_OUTPUT_REG_POP (file, STRUCT_VALUE_REGNUM);
  470. #endif
  471. #endif
  472.     }
  473.  
  474.   profile_label_no++;
  475. }
  476.  
  477. /* Output assembler code for the end of a function.
  478.    For clarity, args are same as those of `final_start_function'
  479.    even though not all of them are needed.  */
  480.  
  481. void
  482. final_end_function (first, file, write_symbols, optimize)
  483.      rtx first;
  484.      FILE *file;
  485.      enum debugger write_symbols;
  486.      int optimize;
  487. {
  488.   if (app_on)
  489.     {
  490.       fprintf (file, ASM_APP_OFF);
  491.       app_on = 0;
  492.     }
  493.  
  494.   if (write_symbols == GDB_DEBUG)
  495.     fprintf (file, "\t.gdbend %d\n", pending_blocks[0]);
  496.  
  497. #ifdef SDB_DEBUGGING_INFO
  498.   if (write_symbols == SDB_DEBUG)
  499.     sdbout_end_function (last_linenum);
  500. #endif
  501.  
  502. #ifdef FUNCTION_EPILOGUE
  503.   /* Finally, output the function epilogue:
  504.      code to restore the stack frame and return to the caller.  */
  505.   FUNCTION_EPILOGUE (file, get_frame_size ());
  506. #endif
  507.  
  508. #ifdef SDB_DEBUGGING_INFO
  509.   if (write_symbols == SDB_DEBUG)
  510.     sdbout_end_epilogue ();
  511. #endif
  512.  
  513.   /* If FUNCTION_EPILOGUE is not defined, then the function body
  514.      itself contains return instructions wherever needed.  */
  515. }
  516.  
  517. /* Output assembler code for some insns: all or part of a function.
  518.    For description of args, see `final_start_function', above.
  519.  
  520.    PRESCAN is 1 if we are not really outputting,
  521.      just scanning as if we were outputting.
  522.    Prescanning deletes and rearranges insns just like ordinary output.
  523.    PRESCAN is -2 if we are outputting after having prescanned.
  524.    In this case, don't try to delete or rearrange insns
  525.    because that has already been done.
  526.    Prescanning is done only on certain machines.  */
  527.  
  528. void
  529. final (first, file, write_symbols, optimize, prescan)
  530.      rtx first;
  531.      FILE *file;
  532.      enum debugger write_symbols;
  533.      int optimize;
  534.      int prescan;
  535. {
  536.   register rtx insn;
  537.  
  538.   last_ignored_compare = 0;
  539.   new_block = 1;
  540.  
  541.   init_recog ();
  542.  
  543.   CC_STATUS_INIT;
  544.  
  545. #if defined( DSP56000 ) || defined( DSP96000 )
  546.   for (insn = first; insn;)
  547. #else
  548.   for (insn = NEXT_INSN (first); insn;)
  549. #endif
  550.     insn = final_scan_insn (insn, file, write_symbols, optimize,
  551.                 prescan, 0);
  552. }
  553.  
  554. /* The final scan for one insn, INSN.
  555.    Args are same as in `final', except that INSN
  556.    is the insn being scanned.
  557.    Value returned is the next insn to be scanned.
  558.  
  559.    NOPEEPHOLES is the flag to disallow peephole processing (currently
  560.    used for within delayed branch sequence output).  */
  561.  
  562. rtx
  563. final_scan_insn  (insn, file, write_symbols, optimize, prescan, nopeepholes)
  564.      rtx insn;
  565.      FILE *file;
  566.      enum debugger write_symbols;
  567.      int optimize;
  568.      int prescan;
  569.      int nopeepholes;
  570. {
  571.   register int i;
  572.   switch (GET_CODE (insn))
  573.     {
  574.     case NOTE:
  575.       if (prescan > 0)
  576.     break;
  577.       if (write_symbols == NO_DEBUG)
  578.     break;
  579.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG)
  580.     {
  581. #ifdef SDB_DEBUGGING_INFO
  582.       if (write_symbols == SDB_DEBUG)
  583.         sdbout_begin_function (last_linenum);
  584. #endif
  585.       break;
  586.     }
  587.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_BEG
  588.       || NOTE_LINE_NUMBER (insn) == NOTE_INSN_LOOP_END)
  589.     break;
  590.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
  591.     break;            /* An insn that was "deleted" */
  592.       if (app_on)
  593.     {
  594.       fprintf (file, ASM_APP_OFF);
  595.       app_on = 0;
  596.     }
  597.       if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_BEG)
  598.     {
  599.       /* Beginning of a symbol-block.  Assign it a sequence number
  600.          and push the number onto the stack PENDING_BLOCKS.  */
  601.  
  602.       if (block_depth == max_block_depth)
  603.         {
  604.           /* PENDING_BLOCKS is full; make it longer.  */
  605.           max_block_depth *= 2;
  606.           pending_blocks
  607.         = (int *) xrealloc (pending_blocks,
  608.                     max_block_depth * sizeof (int));
  609.         }
  610.       pending_blocks[block_depth++] = next_block_index;
  611.  
  612.       /* Output debugging info about the symbol-block beginning.  */
  613.  
  614. #ifdef SDB_DEBUGGING_INFO
  615.       if (write_symbols == SDB_DEBUG)
  616.         sdbout_begin_block (file, last_linenum, next_block_index);
  617. #endif
  618. #ifdef DBX_DEBUGGING_INFO
  619.       if (write_symbols == DBX_DEBUG)
  620.         ASM_OUTPUT_INTERNAL_LABEL (file, "LBB", next_block_index);
  621. #endif
  622.       if (write_symbols == GDB_DEBUG)
  623.         fprintf (file, "\t.gdbbeg %d\n", next_block_index);
  624.  
  625.       next_block_index++;
  626.     }
  627.       else if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_BLOCK_END)
  628.     {
  629.       /* End of a symbol-block.  Pop its sequence number off
  630.          PENDING_BLOCKS and output debugging info based on that.  */
  631.  
  632.       --block_depth;
  633.  
  634. #ifdef DBX_DEBUGGING_INFO
  635.       if (write_symbols == DBX_DEBUG && block_depth >= 0)
  636.         ASM_OUTPUT_INTERNAL_LABEL (file, "LBE",
  637.                        pending_blocks[block_depth]);
  638. #endif
  639.  
  640. #ifdef SDB_DEBUGGING_INFO
  641.       if (write_symbols == SDB_DEBUG && block_depth >= 0)
  642.         sdbout_end_block (file, last_linenum);
  643. #endif
  644.  
  645.       if (write_symbols == GDB_DEBUG)
  646.         fprintf (file, "\t.gdbend %d\n", pending_blocks[block_depth]);
  647.     }
  648.       else if (NOTE_LINE_NUMBER (insn) > 0)
  649.     /* This note is a line-number.  */
  650.     output_source_line (file, insn, write_symbols);
  651.       break;
  652.  
  653.     case BARRIER:
  654. #ifdef ASM_OUTPUT_ALIGN_CODE
  655.       ASM_OUTPUT_ALIGN_CODE (file);
  656. #endif
  657.       break;
  658.  
  659.     case CODE_LABEL:
  660. #if defined( DSP56000 )
  661.       /* labels cause n register values to become undefined. */
  662.       clear_n_reg_values ( );
  663. #endif
  664.       CC_STATUS_INIT;
  665.       if (prescan > 0)
  666.     break;
  667.       new_block = 1;
  668.       if (app_on)
  669.     {
  670.       fprintf (file, ASM_APP_OFF);
  671.       app_on = 0;
  672.     }
  673. #ifdef ASM_OUTPUT_CASE_LABEL
  674.       if (NEXT_INSN (insn) != 0
  675.       && GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
  676.     {
  677.       rtx nextbody = PATTERN (NEXT_INSN (insn));
  678.  
  679.       /* If this label is followed by a jump-table,
  680.          output the two of them together in a special way.  */
  681.  
  682.       if (GET_CODE (nextbody) == ADDR_VEC
  683.           || GET_CODE (nextbody) == ADDR_DIFF_VEC)
  684.         {
  685.           ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
  686.                      NEXT_INSN (insn));
  687.           break;
  688.         }
  689.     }
  690. #endif
  691.  
  692.       ASM_OUTPUT_INTERNAL_LABEL (file, "L", CODE_LABEL_NUMBER (insn));
  693.       break;
  694.  
  695.     default:
  696.       {
  697.     register rtx body = PATTERN (insn);
  698.     int insn_code_number;
  699.     char *template;
  700.  
  701.     /* An INSN, JUMP_INSN or CALL_INSN.
  702.        First check for special kinds that recog doesn't recognize.  */
  703.  
  704.     if (GET_CODE (body) == USE /* These are just declarations */
  705.         || GET_CODE (body) == CLOBBER)
  706.       break;
  707.  
  708.     if (profile_block_flag && new_block)
  709.       {
  710.         new_block = 0;
  711.         /* Enable the table of basic-block use counts
  712.            to point at the code it applies to.  */
  713.         ASM_OUTPUT_INTERNAL_LABEL (file, "LPB", count_basic_blocks);
  714.         /* Before first insn of this basic block, increment the
  715.            count of times it was entered.  */
  716. #ifdef BLOCK_PROFILER
  717.         BLOCK_PROFILER (file, count_basic_blocks);
  718. #endif
  719.         count_basic_blocks++;
  720.       }
  721.  
  722.     if (GET_CODE (body) == ASM_INPUT)
  723.       {
  724. #if defined( DSP56000 )
  725.           /* there's also no telling what that did to the n registers! */
  726.           clear_n_reg_values ( );
  727. #endif
  728.         /* There's no telling what that did to the condition codes.  */
  729.         CC_STATUS_INIT;
  730.         if (prescan > 0)
  731.           break;
  732.         if (! app_on)
  733.           {
  734.         fprintf (file, ASM_APP_ON);
  735.         app_on = 1;
  736.           }
  737.         fprintf (asm_out_file, "\t%s\n", XSTR (body, 0));
  738.         break;
  739.       }
  740.  
  741.     /* Detect `asm' construct with operands.  */
  742.     if (asm_noperands (body) >= 0)
  743.       {
  744.         int noperands = asm_noperands (body);
  745.         rtx *ops;
  746.         char *string;
  747.  
  748.         /* There's no telling what that did to the condition codes.  */
  749.         CC_STATUS_INIT;
  750.         if (prescan > 0)
  751.           break;
  752.  
  753.         /* alloca won't do here, since only return from `final'
  754.            would free it.  */
  755.         if (noperands > 0)
  756.           ops = (rtx *) xmalloc (noperands * sizeof (rtx));
  757.  
  758.         if (! app_on)
  759.           {
  760.         fprintf (file, ASM_APP_ON);
  761.         app_on = 1;
  762.           }
  763.  
  764.         /* Get out the operand values.  */
  765.         string = decode_asm_operands (body, ops, 0, 0, 0);
  766.         /* Inhibit aborts on what would otherwise be compiler bugs.  */
  767.         insn_noperands = noperands;
  768.         this_is_asm_operands = insn;
  769.         /* Output the insn using them.  */
  770.         output_asm_insn (string, ops);
  771.         this_is_asm_operands = 0;
  772.         if (noperands > 0)
  773.           free (ops);
  774.         break;
  775.       }
  776.  
  777.     if (prescan <= 0 && app_on)
  778.       {
  779.         fprintf (file, ASM_APP_OFF);
  780.         app_on = 0;
  781.       }
  782.  
  783.     /* Detect insns that are really jump-tables
  784.        and output them as such.  */
  785.  
  786.     if (GET_CODE (body) == ADDR_VEC)
  787.       {
  788.         register int vlen, idx;
  789.  
  790.         if (prescan > 0)
  791.           break;
  792.  
  793.         vlen = XVECLEN (body, 0);
  794.         for (idx = 0; idx < vlen; idx++)
  795.           ASM_OUTPUT_ADDR_VEC_ELT (file,
  796.                        CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
  797. #ifdef ASM_OUTPUT_CASE_END
  798.         ASM_OUTPUT_CASE_END (file,
  799.                  CODE_LABEL_NUMBER (PREV_INSN (insn)),
  800.                  insn);
  801. #endif
  802.         break;
  803.       }
  804.     if (GET_CODE (body) == ADDR_DIFF_VEC)
  805.       {
  806.         register int vlen, idx;
  807.  
  808.         if (prescan > 0)
  809.           break;
  810.  
  811.         vlen = XVECLEN (body, 1);
  812.         for (idx = 0; idx < vlen; idx++)
  813.           ASM_OUTPUT_ADDR_DIFF_ELT (file,
  814.                     CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
  815.                     CODE_LABEL_NUMBER (XEXP (XEXP (body, 0), 0)));
  816. #ifdef ASM_OUTPUT_CASE_END
  817.         ASM_OUTPUT_CASE_END (file,
  818.                  CODE_LABEL_NUMBER (PREV_INSN (insn)),
  819.                  insn);
  820. #endif
  821.         break;
  822.       }
  823.  
  824.     if (recog_memoized (insn) == -1
  825.         && GET_CODE (body) == SEQUENCE) /* A delayed-branch sequence */
  826.       {
  827.         register int i;
  828.         if (prescan > 0)
  829.           break;
  830.         final_sequence = body;
  831.         for (i = 0; i < XVECLEN (body, 0); i++)
  832.           final_scan_insn (XVECEXP (body, 0, i), file, write_symbols,
  833.                    optimize, prescan, 1);
  834.         final_sequence = 0;
  835. #ifdef DBR_OUTPUT_SEQEND
  836.         DBR_OUTPUT_SEQEND (file);
  837. #endif
  838.         break;
  839.       }
  840.  
  841.     /* We have a real machine instruction as rtl.  */
  842.  
  843.     body = PATTERN (insn);
  844.  
  845.     /* Check for redundant test and compare instructions
  846.        (when the condition codes are already set up as desired).
  847.        This is done only when optimizing; if not optimizing,
  848.        it should be possible for the user to alter a variable
  849.        with the debugger in between statements
  850.        and the next statement should reexamine the variable
  851.        to compute the condition codes.  */
  852.  
  853.     if (optimize
  854.         && GET_CODE (body) == SET
  855.         && GET_CODE (SET_DEST (body)) == CC0
  856.         && insn != last_ignored_compare)
  857.       {
  858.         if (GET_CODE (SET_SRC (body)) == SUBREG)
  859.           SET_SRC (body) = alter_subreg (SET_SRC (body));
  860.         if ((cc_status.value1 != 0
  861.          && rtx_equal_p (SET_SRC (body), cc_status.value1))
  862.         || (cc_status.value2 != 0
  863.             && rtx_equal_p (SET_SRC (body), cc_status.value2)))
  864.           {
  865.         /* Don't delete insn if has an addressing side-effect */
  866.         if (! find_reg_note (insn, REG_INC, 0)
  867.             /* or if anything in it is volatile.  */
  868.             && ! volatile_refs_p (PATTERN (insn)))
  869.           {
  870. #if defined( DSP56000 )
  871.               extern enum mdep_cc_info next_cc_use ();
  872.               
  873.               if ( cc_status.mdep == next_cc_use ( insn ))
  874.               {
  875.               last_ignored_compare = insn;
  876.               break;
  877.               }
  878. #else
  879.             /* We don't really delete the insn; just ignore it.  */
  880.             last_ignored_compare = insn;
  881.             break;
  882. #endif
  883.           }
  884.           }
  885.       }
  886.  
  887.     /* Following a conditional branch, we have a new basic block.  */
  888.     if (GET_CODE (insn) == JUMP_INSN && GET_CODE (body) == SET
  889.         && GET_CODE (SET_SRC (body)) != LABEL_REF)
  890.       new_block = 1;
  891.  
  892.     /* If this is a conditional branch, maybe modify it
  893.        if the cc's are in a nonstandard state
  894.        so that it accomplishes the same thing that it would
  895.        do straightforwardly if the cc's were set up normally.  */
  896.  
  897.     if (cc_status.flags != 0
  898.         && GET_CODE (insn) == JUMP_INSN
  899.         && GET_CODE (body) == SET
  900.         && SET_DEST (body) == pc_rtx
  901.         && GET_CODE (SET_SRC (body)) == IF_THEN_ELSE
  902.         /* This is done during prescan; it is not done again
  903.            in final scan when prescan has been done.  */
  904.         && prescan >= 0)
  905.       {
  906.         /* This function may alter the contents of its argument
  907.            and clear some of the cc_status.flags bits.
  908.            It may also return 1 meaning condition now always true
  909.            or -1 meaning condition now always false
  910.            or 2 meaning condition nontrivial but altered.  */
  911.         register int result = alter_cond (XEXP (SET_SRC (body), 0));
  912.         /* If condition now has fixed value, replace the IF_THEN_ELSE
  913.            with its then-operand or its else-operand.  */
  914.         if (result == 1)
  915.           SET_SRC (body) = XEXP (SET_SRC (body), 1);
  916.         if (result == -1)
  917.           SET_SRC (body) = XEXP (SET_SRC (body), 2);
  918.         /* The jump is now either unconditional or a no-op.
  919.            If it has become a no-op, don't try to output it.
  920.            (It would not be recognized.)  */
  921.         if (SET_SRC (body) == pc_rtx)
  922.           {
  923.         PUT_CODE (insn, NOTE);
  924.         NOTE_LINE_NUMBER (insn) = NOTE_INSN_DELETED;
  925.         NOTE_SOURCE_FILE (insn) = 0;
  926.         break;
  927.           }
  928.         /* Rerecognize the instruction if it has changed.  */
  929.         if (result != 0)
  930.           INSN_CODE (insn) = -1;
  931.       }
  932.  
  933. #ifdef STORE_FLAG_VALUE
  934.     /* Make same adjustments to instructions that examine the
  935.        condition codes without jumping (if this machine has them).  */
  936.  
  937.     if (cc_status.flags != 0
  938.         && GET_CODE (body) == SET)
  939.       switch (GET_CODE (SET_SRC (body)))
  940.         {
  941.         case GTU:
  942.         case GT:
  943.         case LTU:
  944.         case LT:
  945.         case GEU:
  946.         case GE:
  947.         case LEU:
  948.         case LE:
  949.         case EQ:
  950.         case NE:
  951.           {
  952.         register int result;
  953.         if (GET_CODE (XEXP (SET_SRC (body), 0)) != CC0)
  954.           break;
  955.         result = alter_cond (SET_SRC (body));
  956.         if (result == 1)
  957.           SET_SRC (body) = gen_rtx (CONST_INT, VOIDmode,
  958.                         STORE_FLAG_VALUE);
  959.         if (result == -1)
  960.           SET_SRC (body) = const0_rtx;
  961.         if (result != 0)
  962.           INSN_CODE (insn) = -1;
  963.           }
  964.         }
  965. #endif                /* STORE_FLAG_VALUE */
  966.  
  967.     /* Do machine-specific peephole optimizations if desired.  */
  968.  
  969.     if (optimize && !flag_no_peephole && !nopeepholes)
  970.       {
  971.         rtx next = peephole (insn);
  972.         /* When peepholing, if there were notes within the peephole,
  973.            emit them before the peephole.  */
  974.         if (next != 0 && next != NEXT_INSN (insn))
  975.           {
  976.         rtx note = NEXT_INSN (insn);
  977.         rtx prev = PREV_INSN (insn);
  978.         while (note != next)
  979.           {
  980.             final_scan_insn (note, file, write_symbols, optimize,
  981.                      prescan, nopeepholes);
  982.             note = NEXT_INSN (note);
  983.           }
  984.         /* In case this is prescan, put the notes
  985.            in proper position for later rescan.  */
  986.         note = NEXT_INSN (insn);
  987.         PREV_INSN (note) = prev;
  988.         NEXT_INSN (prev) = note;
  989.         NEXT_INSN (PREV_INSN (next)) = insn;
  990.         PREV_INSN (insn) = PREV_INSN (next);
  991.         NEXT_INSN (insn) = next;
  992.         PREV_INSN (next) = insn;
  993.           }
  994.  
  995.         /* PEEPHOLE might have changed this.  */
  996.         body = PATTERN (insn);
  997.       }
  998.  
  999.     /* Try to recognize the instruction.
  1000.        If successful, verify that the operands satisfy the
  1001.        constraints for the instruction.  Crash if they don't,
  1002.        since `reload' should have changed them so that they do.  */
  1003.  
  1004.     insn_code_number = recog_memoized (insn);
  1005.     insn_extract (insn);
  1006.     for (i = 0; i < insn_n_operands[insn_code_number]; i++)
  1007.       {
  1008.         if (GET_CODE (recog_operand[i]) == SUBREG)
  1009.           recog_operand[i] = alter_subreg (recog_operand[i]);
  1010.       }
  1011.  
  1012. #ifdef REGISTER_CONSTRAINTS
  1013.     if (! constrain_operands (insn_code_number))
  1014.       abort ();
  1015. #endif
  1016.  
  1017.     /* Some target machines need to prescan each insn before
  1018.        it is output.  */
  1019.  
  1020. #ifdef FINAL_PRESCAN_INSN
  1021.     FINAL_PRESCAN_INSN (insn, recog_operand,
  1022.                 insn_n_operands[insn_code_number]);
  1023. #endif
  1024.  
  1025.     cc_prev_status = cc_status;
  1026.  
  1027.     /* Update `cc_status' for this instruction.
  1028.        The instruction's output routine may change it further.
  1029.        If the output routine for a jump insn needs to depend
  1030.        on the cc status, it should look at cc_prev_status.  */
  1031.  
  1032.     NOTICE_UPDATE_CC (body, insn);
  1033.  
  1034.     /* If the proper template needs to be chosen by some C code,
  1035.        run that code and get the real template.  */
  1036.  
  1037.     template = insn_template[insn_code_number];
  1038.     if (template == 0)
  1039.       {
  1040.         template = (*insn_outfun[insn_code_number]) (recog_operand, insn);
  1041.  
  1042.         /* If the C code returns 0, it means that it is a jump insn
  1043.            which follows a deleted test insn, and that test insn
  1044.            needs to be reinserted.  */
  1045.         if (template == 0)
  1046.           {
  1047.         if (PREV_INSN (insn) != last_ignored_compare)
  1048.           abort ();
  1049.         new_block = 0;
  1050.         return PREV_INSN (insn);
  1051.           }
  1052.       }
  1053.  
  1054.     if (prescan > 0)
  1055.       break;
  1056.  
  1057.     /* Output assembler code from the template.  */
  1058.  
  1059.     output_asm_insn (template, recog_operand);
  1060.  
  1061.     /* Mark this insn as having been output.  */
  1062.     INSN_DELETED_P (insn) = 1;
  1063.       }
  1064.     }
  1065.   return NEXT_INSN (insn);
  1066. }
  1067.  
  1068. /* Set up FILENAME as the current file for GDB line-number output.  */
  1069.  
  1070. void
  1071. set_current_gdbfile (filename)
  1072.      char *filename;
  1073. {
  1074.   register struct gdbfile *f;
  1075.   for (f = gdbfiles; f; f = f->next)
  1076.     if (!strcmp (f->name, filename))
  1077.       break;
  1078.  
  1079.   if (!f)
  1080.     {
  1081.       f = (struct gdbfile *) permalloc (sizeof (struct gdbfile));
  1082.       f->next = gdbfiles;
  1083.       gdbfiles = f;
  1084.       f->name = filename;
  1085.       f->filenum = next_gdb_filenum++;
  1086.       f->nlines = 0;
  1087.     }
  1088.   current_gdbfile = f;
  1089.   lastfile = filename;
  1090. }
  1091.  
  1092. /* Output debugging info to the assembler file FILE
  1093.    based on the NOTE-insn INSN, assumed to be a line number.  */
  1094.  
  1095. static void
  1096. output_source_line (file, insn, write_symbols)
  1097.      FILE *file;
  1098.      rtx insn;
  1099.      enum debugger write_symbols;
  1100. {
  1101.   register char *filename = NOTE_SOURCE_FILE (insn);
  1102.  
  1103.   last_linenum = NOTE_LINE_NUMBER (insn);
  1104.  
  1105.   if (write_symbols == GDB_DEBUG)
  1106.     {
  1107.       /* Output GDB-format line number info.  */
  1108.  
  1109.       /* If this is not the same source file as last time,
  1110.      find or assign a GDB-file-number to this file.  */
  1111.       if (filename && (lastfile == 0 || strcmp (filename, lastfile)
  1112.                || current_gdbfile == 0))
  1113.     set_current_gdbfile (filename);
  1114.  
  1115.       ++current_gdbfile->nlines;
  1116.       fprintf (file, "\t.gdbline %d,%d\n",
  1117.            current_gdbfile->filenum, NOTE_LINE_NUMBER (insn));
  1118.     }
  1119.  
  1120.   if (write_symbols == SDB_DEBUG || write_symbols == DBX_DEBUG)
  1121.     {
  1122. #ifdef SDB_DEBUGGING_INFO
  1123.       if (write_symbols == SDB_DEBUG
  1124. #if 0 /* People like having line numbers even in wrong file!  */
  1125.       /* COFF can't handle multiple source files--lose, lose.  */
  1126.       && !strcmp (filename, main_input_filename)
  1127. #endif
  1128.       /* COFF relative line numbers must be positive.  */
  1129.       && last_linenum > sdb_begin_function_line)
  1130.     {
  1131. #ifdef ASM_OUTPUT_SOURCE_LINE
  1132.       ASM_OUTPUT_SOURCE_LINE (file, last_linenum);
  1133. #else
  1134.       fprintf (file, "\t.ln\t%d\n",
  1135.            (sdb_begin_function_line
  1136.             ? last_linenum - sdb_begin_function_line : 1));
  1137. #endif
  1138.     }
  1139. #endif
  1140.  
  1141. #ifdef DBX_DEBUGGING_INFO
  1142.       if (write_symbols == DBX_DEBUG)
  1143.     {
  1144.       /* Write DBX line number data.  */
  1145.  
  1146.       if (filename && (lastfile == 0 || strcmp (filename, lastfile)))
  1147.         {
  1148. #ifdef ASM_OUTPUT_SOURCE_FILENAME
  1149.           ASM_OUTPUT_SOURCE_FILENAME (file, filename);
  1150. #else
  1151.           fprintf (file, "\t.stabs \"%s\",%d,0,0,Ltext\n",
  1152.                filename, N_SOL);
  1153. #endif
  1154.           lastfile = filename;
  1155.         }
  1156.     }
  1157.  
  1158. #ifdef ASM_OUTPUT_SOURCE_LINE
  1159.       ASM_OUTPUT_SOURCE_LINE (file, NOTE_LINE_NUMBER (insn));
  1160. #else
  1161.       fprintf (file, "\t.stabd %d,0,%d\n",
  1162.            N_SLINE, NOTE_LINE_NUMBER (insn));
  1163. #endif
  1164. #endif /* DBX_DEBUGGING_INFO */
  1165.     }
  1166. }
  1167.  
  1168. /* If X is a SUBREG, replace it with a REG or a MEM,
  1169.    based on the thing it is a subreg of.  */
  1170.  
  1171. rtx
  1172. alter_subreg (x)
  1173.      register rtx x;
  1174. {
  1175.   register rtx y = SUBREG_REG (x);
  1176.   if (GET_CODE (y) == SUBREG)
  1177.     y = alter_subreg (y);
  1178.  
  1179.   if (GET_CODE (y) == REG)
  1180.     {
  1181. #if defined( DSP56000 )
  1182.     if (( DImode != GET_MODE ( x )) &&
  1183.         (( DSP56_A_REGNUM == REGNO ( y ) || DSP56_B_REGNUM == REGNO ( y ))
  1184.          && DImode == GET_MODE ( y )) &&
  1185.         ( ! RELOAD_SUBREG_P ( x )))
  1186.     {
  1187.         /* use this meaningless rtl flag to tell print_operand
  1188.            to go for the LSW of this DST_REG due to the SUBREG
  1189.            on a DImode. */
  1190.  
  1191.         MEM_IN_STRUCT_P ( x ) = 1;
  1192.     }
  1193. #endif
  1194.       /* If the containing reg really gets a hard reg, so do we.  */
  1195.       PUT_CODE (x, REG);
  1196.       REGNO (x) = REGNO (y) + SUBREG_WORD (x);
  1197.     }
  1198.   else if (GET_CODE (y) == MEM)
  1199.     {
  1200.       register int offset = SUBREG_WORD (x) * UNITS_PER_WORD;
  1201. #ifdef BYTES_BIG_ENDIAN
  1202.       offset -= (min (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (x)))
  1203.          - min (UNITS_PER_WORD, GET_MODE_SIZE (GET_MODE (y))));
  1204. #endif
  1205.       PUT_CODE (x, MEM);
  1206.       MEM_VOLATILE_P (x) = MEM_VOLATILE_P (y);
  1207.       XEXP (x, 0) = plus_constant (XEXP (y, 0), offset);
  1208.     }
  1209.   else if (GET_CODE (y) == CONST_DOUBLE)
  1210.     return y;
  1211.  
  1212.   return x;
  1213. }
  1214.  
  1215. /* Do alter_subreg on all the SUBREGs contained in X.  */
  1216.  
  1217. static rtx
  1218. walk_alter_subreg (x)
  1219.      rtx x;
  1220. {
  1221.   switch (GET_CODE (x))
  1222.     {
  1223.     case PLUS:
  1224.     case MULT:
  1225.       XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
  1226.       XEXP (x, 1) = walk_alter_subreg (XEXP (x, 1));
  1227.       break;
  1228.  
  1229.     case MEM:
  1230.       XEXP (x, 0) = walk_alter_subreg (XEXP (x, 0));
  1231.       break;
  1232.  
  1233.     case SUBREG:
  1234.       return alter_subreg (x);
  1235.     }
  1236.  
  1237.   return x;
  1238. }
  1239.  
  1240. /* Given BODY, the body of a jump instruction, alter the jump condition
  1241.    as required by the bits that are set in cc_status.flags.
  1242.    Not all of the bits there can be handled at this level in all cases.
  1243.  
  1244.    The value is normally 0.
  1245.    1 means that the condition has become always true.
  1246.    -1 means that the condition has become always false.
  1247.    2 means that COND has been altered.  */
  1248.  
  1249. static int
  1250. alter_cond (cond)
  1251.      register rtx cond;
  1252. {
  1253.   int value = 0;
  1254.  
  1255.   if (cc_status.flags & CC_REVERSED)
  1256.     {
  1257.       value = 2;
  1258.       switch (GET_CODE (cond))
  1259.     {
  1260.     case LE:
  1261.       PUT_CODE (cond, GE);
  1262.       break;
  1263.     case GE:
  1264.       PUT_CODE (cond, LE);
  1265.       break;
  1266.     case LT:
  1267.       PUT_CODE (cond, GT);
  1268.       break;
  1269.     case GT:
  1270.       PUT_CODE (cond, LT);
  1271.       break;
  1272.     case LEU:
  1273.       PUT_CODE (cond, GEU);
  1274.       break;
  1275.     case GEU:
  1276.       PUT_CODE (cond, LEU);
  1277.       break;
  1278.     case LTU:
  1279.       PUT_CODE (cond, GTU);
  1280.       break;
  1281.     case GTU:
  1282.       PUT_CODE (cond, LTU);
  1283.       break;
  1284.     }
  1285.     }
  1286.  
  1287.   if (cc_status.flags & CC_NOT_POSITIVE)
  1288.     switch (GET_CODE (cond))
  1289.       {
  1290.       case LE:
  1291.       case LEU:
  1292.       case GEU:
  1293.     /* Jump becomes unconditional.  */
  1294.     return 1;
  1295.  
  1296.       case GT:
  1297.       case GTU:
  1298.       case LTU:
  1299.     /* Jump becomes no-op.  */
  1300.     return -1;
  1301.  
  1302.       case GE:
  1303.     PUT_CODE (cond, EQ);
  1304.     value = 2;
  1305.     break;
  1306.  
  1307.       case LT:
  1308.     PUT_CODE (cond, NE);
  1309.     value = 2;
  1310.     break;
  1311.       }
  1312.  
  1313.   if (cc_status.flags & CC_NOT_NEGATIVE)
  1314.     switch (GET_CODE (cond))
  1315.       {
  1316.       case GE:
  1317.       case GEU:
  1318.     /* Jump becomes unconditional.  */
  1319.     return 1;
  1320.  
  1321.       case LT:
  1322.       case LTU:
  1323.     /* Jump becomes no-op.  */
  1324.     return -1;
  1325.  
  1326.       case LE:
  1327.       case LEU:
  1328.     PUT_CODE (cond, EQ);
  1329.     value = 2;
  1330.     break;
  1331.  
  1332.       case GT:
  1333.       case GTU:
  1334.     PUT_CODE (cond, NE);
  1335.     value = 2;
  1336.     break;
  1337.       }
  1338.  
  1339.   if (cc_status.flags & CC_NO_OVERFLOW)
  1340.     switch (GET_CODE (cond))
  1341.       {
  1342.       case GEU:
  1343.     /* Jump becomes unconditional.  */
  1344.     return 1;
  1345.  
  1346.       case LEU:
  1347.     PUT_CODE (cond, EQ);
  1348.     value = 2;
  1349.     break;
  1350.  
  1351.       case GTU:
  1352.     PUT_CODE (cond, NE);
  1353.     value = 2;
  1354.     break;
  1355.  
  1356.       case LTU:
  1357.     /* Jump becomes no-op.  */
  1358.     return -1;
  1359.       }
  1360.  
  1361.   if (cc_status.flags & (CC_Z_IN_NOT_N | CC_Z_IN_N))
  1362.     switch (GET_CODE (cond))
  1363.       {
  1364.       case LE:
  1365.       case LEU:
  1366.       case GE:
  1367.       case GEU:
  1368.       case LT:
  1369.       case LTU:
  1370.       case GT:
  1371.       case GTU:
  1372.     abort ();
  1373.  
  1374.       case NE:
  1375.     PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? GE : LT);
  1376.     value = 2;
  1377.     break;
  1378.  
  1379.       case EQ:
  1380.     PUT_CODE (cond, cc_status.flags & CC_Z_IN_N ? LT : GE);
  1381.     value = 2;
  1382.     break;
  1383.       }
  1384.   
  1385.   return value;
  1386. }
  1387.  
  1388. /* Report inconsistency between the assembler template and the operands.
  1389.    In an `asm', it's the user's fault; otherwise, the compiler's fault.  */
  1390.  
  1391. static void
  1392. output_operand_lossage (str)
  1393.      char *str;
  1394. {
  1395.   if (this_is_asm_operands)
  1396.     error_for_asm (this_is_asm_operands, "invalid `asm': %s", str);
  1397.   else
  1398.     abort ();
  1399. }
  1400.  
  1401. /* Output of assembler code from a template, and its subroutines.  */
  1402.  
  1403. /* Output text from TEMPLATE to the assembler output file,
  1404.    obeying %-directions to substitute operands taken from
  1405.    the vector OPERANDS.
  1406.  
  1407.    %N (for N a digit) means print operand N in usual manner.
  1408.    %lN means require operand N to be a CODE_LABEL or LABEL_REF
  1409.       and print the label name with no punctuation.
  1410.    %cN means require operand N to be a constant
  1411.       and print the constant expression with no punctuation.
  1412.    %aN means expect operand N to be a memory address
  1413.       (not a memory reference!) and print a reference
  1414.       to that address.
  1415.    %nN means expect operand N to be a constant
  1416.       and print a constant expression for minus the value
  1417.       of the operand, with no other punctuation.  */
  1418.  
  1419. void
  1420. output_asm_insn (template, operands)
  1421.      char *template;
  1422.      rtx *operands;
  1423. {
  1424.   register char *p;
  1425.   register int c;
  1426.  
  1427.   /* An insn may return a null string template
  1428.      in a case where no assembler code is needed.  */
  1429.   if (*template == 0)
  1430.     return;
  1431.  
  1432.   p = template;
  1433.   putc ('\t', asm_out_file);
  1434.  
  1435. #ifdef ASM_OUTPUT_OPCODE
  1436.   ASM_OUTPUT_OPCODE (asm_out_file, p);
  1437. #endif
  1438.  
  1439.   while (c = *p++)
  1440.     {
  1441. #ifdef ASM_OUTPUT_OPCODE
  1442.       if (c == '\n')
  1443.     {
  1444.       putc (c, asm_out_file);
  1445.       while ((c = *p) == '\t')
  1446.         {
  1447.           putc (c, asm_out_file);
  1448.           p++;
  1449.         }
  1450.       ASM_OUTPUT_OPCODE (asm_out_file, p);
  1451.     }
  1452.       else
  1453. #endif
  1454.       if (c != '%')
  1455.     putc (c, asm_out_file);
  1456.       else
  1457.     {
  1458.       /* %% outputs a single %.  */
  1459.       if (*p == '%')
  1460.         {
  1461.           p++;
  1462.           putc (c, asm_out_file);
  1463.         }
  1464.       /* % followed by a letter and some digits
  1465.          outputs an operand in a special way depending on the letter.
  1466.          Letters `acln' are implemented here.
  1467.          Other letters are passed to `output_operand' so that
  1468.          the PRINT_OPERAND macro can define them.  */
  1469.       else if ((*p >= 'a' && *p <= 'z')
  1470.            || (*p >= 'A' && *p <= 'Z'))
  1471.         {
  1472.           int letter = *p++;
  1473.           c = atoi (p);
  1474.  
  1475.           if (! (*p >= '0' && *p <= '9'))
  1476.         output_operand_lossage ("operand number missing after %-letter");
  1477.           else if (this_is_asm_operands && c >= (unsigned) insn_noperands)
  1478.         output_operand_lossage ("operand number out of range");
  1479.           else if (letter == 'l')
  1480.         output_asm_label (operands[c]);
  1481.           else if (letter == 'a')
  1482.         output_address (operands[c]);
  1483.           else if (letter == 'c')
  1484.         {
  1485.           if (CONSTANT_ADDRESS_P (operands[c]))
  1486.             output_addr_const (asm_out_file, operands[c]);
  1487.           else
  1488.             output_operand (operands[c], 'c');
  1489.         }
  1490.           else if (letter == 'n')
  1491.         {
  1492.           if (GET_CODE (operands[c]) == CONST_INT)
  1493.             fprintf (asm_out_file, "%d", - INTVAL (operands[c]));
  1494.           else
  1495.             {
  1496.               putc ('-', asm_out_file);
  1497.               output_addr_const (asm_out_file, operands[c]);
  1498.             }
  1499.         }
  1500.           else
  1501.         output_operand (operands[c], letter);
  1502.  
  1503.           while ((c = *p) >= '0' && c <= '9') p++;
  1504.         }
  1505.       /* % followed by a digit outputs an operand the default way.  */
  1506.       else if (*p >= '0' && *p <= '9')
  1507.         {
  1508.           c = atoi (p);
  1509.           if (this_is_asm_operands && c >= (unsigned) insn_noperands)
  1510.         output_operand_lossage ("operand number out of range");
  1511.           else
  1512.         output_operand (operands[c], 0);
  1513.           while ((c = *p) >= '0' && c <= '9') p++;
  1514.         }
  1515.       /* % followed by punctuation: output something for that
  1516.          punctuation character alone, with no operand.
  1517.          The PRINT_OPERAND macro decides what is actually done.  */
  1518. #ifdef PRINT_OPERAND_PUNCT_VALID_P
  1519.       else if (PRINT_OPERAND_PUNCT_VALID_P (*p))
  1520.         output_operand (0, *p++);
  1521. #endif
  1522.       else
  1523.         output_operand_lossage ("invalid %%-code");
  1524.     }
  1525.     }
  1526.  
  1527.   putc ('\n', asm_out_file);
  1528. }
  1529.  
  1530. /* Output a LABEL_REF, or a bare CODE_LABEL, as an assembler symbol.  */
  1531.  
  1532. void
  1533. output_asm_label (x)
  1534.      rtx x;
  1535. {
  1536.   char buf[256];
  1537.  
  1538.   if (GET_CODE (x) == LABEL_REF)
  1539.     ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
  1540.   else if (GET_CODE (x) == CODE_LABEL)
  1541.     ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
  1542.   else
  1543.     output_operand_lossage ("`%l' operand isn't a label");
  1544.  
  1545.   assemble_name (asm_out_file, buf);
  1546. }
  1547.  
  1548. /* Print operand X using machine-dependent assembler syntax.
  1549.    The macro PRINT_OPERAND is defined just to control this function.
  1550.    CODE is a non-digit that preceded the operand-number in the % spec,
  1551.    such as 'z' if the spec was `%z3'.  CODE is 0 if there was no char
  1552.    between the % and the digits.
  1553.    When CODE is a non-letter, X is 0.
  1554.  
  1555.    The meanings of the letters are machine-dependent and controlled
  1556.    by PRINT_OPERAND.  */
  1557.  
  1558. static void
  1559. output_operand (x, code)
  1560.      rtx x;
  1561.      int code;
  1562. {
  1563.   if (x && GET_CODE (x) == SUBREG)
  1564.     x = alter_subreg (x);
  1565.   PRINT_OPERAND (asm_out_file, x, code);
  1566. }
  1567.  
  1568. /* Print a memory reference operand for address X
  1569.    using machine-dependent assembler syntax.
  1570.    The macro PRINT_OPERAND_ADDRESS exists just to control this function.  */
  1571.  
  1572. void
  1573. output_address (x)
  1574.      rtx x;
  1575. {
  1576.   walk_alter_subreg (x);
  1577.   PRINT_OPERAND_ADDRESS (asm_out_file, x);
  1578. }
  1579.  
  1580. /* Print an integer constant expression in assembler syntax.
  1581.    Addition and subtraction are the only arithmetic
  1582.    that may appear in these expressions.  */
  1583.  
  1584. void
  1585. output_addr_const (file, x)
  1586.      FILE *file;
  1587.      rtx x;
  1588. {
  1589.   char buf[256];
  1590.  
  1591.  restart:
  1592.   switch (GET_CODE (x))
  1593.     {
  1594.     case SYMBOL_REF:
  1595.       assemble_name (file, XSTR (x, 0));
  1596.       break;
  1597.  
  1598.     case LABEL_REF:
  1599.       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0)));
  1600.       assemble_name (asm_out_file, buf);
  1601.       break;
  1602.  
  1603.     case CODE_LABEL:
  1604.       ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x));
  1605.       assemble_name (asm_out_file, buf);
  1606.       break;
  1607.  
  1608.     case CONST_INT:
  1609.       fprintf (file, "%d", INTVAL (x));
  1610.       break;
  1611.  
  1612.     case CONST:
  1613.       x = XEXP (x, 0);
  1614.       goto restart;
  1615.  
  1616.     case CONST_DOUBLE:
  1617.       if (GET_MODE (x) == DImode)
  1618.     {
  1619.       /* We can use %d if the number is <32 bits and positive.  */
  1620.       if (CONST_DOUBLE_HIGH (x) || CONST_DOUBLE_LOW (x) < 0)
  1621.         fprintf (file, "0x%x%08x",
  1622.              CONST_DOUBLE_HIGH (x), CONST_DOUBLE_LOW (x));
  1623.       else
  1624.         fprintf (file, "%d", CONST_DOUBLE_LOW (x));
  1625.     }
  1626.       else
  1627.     /* We can't handle floating point constants;
  1628.        PRINT_OPERAND must handle them.  */
  1629.     output_operand_lossage ("floating constant misused");
  1630.       break;
  1631.  
  1632.     case PLUS:
  1633.       /* Some assemblers need integer constants to appear last (eg masm).  */
  1634.       if (GET_CODE (XEXP (x, 0)) == CONST_INT)
  1635.     {
  1636.       output_addr_const (file, XEXP (x, 1));
  1637.       if (INTVAL (XEXP (x, 0)) >= 0)
  1638.         fprintf (file, "+");
  1639.       output_addr_const (file, XEXP (x, 0));
  1640.     }
  1641.       else
  1642.     {
  1643.       output_addr_const (file, XEXP (x, 0));
  1644.       if (INTVAL (XEXP (x, 1)) >= 0)
  1645.         fprintf (file, "+");
  1646.       output_addr_const (file, XEXP (x, 1));
  1647.     }
  1648.       break;
  1649.  
  1650.     case MINUS:
  1651.       output_addr_const (file, XEXP (x, 0));
  1652.       fprintf (file, "-");
  1653.       output_addr_const (file, XEXP (x, 1));
  1654.       break;
  1655.  
  1656.     default:
  1657.       output_operand_lossage ("invalid expression as operand");
  1658.     }
  1659. }
  1660.